From 4220d3c1968fb00402a59080ae724802b17c8853 Mon Sep 17 00:00:00 2001 From: robertl Date: Tue, 28 Oct 2003 23:47:26 +0000 Subject: [PATCH] Fix reads of tracks when time_t isn't 32bits. (as on AMD64/Linux) --- mapsource.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mapsource.c b/mapsource.c index 669555409..972d90225 100644 --- a/mapsource.c +++ b/mapsource.c @@ -1204,7 +1204,7 @@ mps_track_r(FILE *mps_file, int mps_ver, route_head **trk) int lat; int lon; - time_t dateTime = 0; + int dateTime = 0; route_head *track_head; unsigned int trk_count; -- 2.30.2